home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-04.Z / 94-04 / text0354.txt < prev    next >
Encoding:
Text File  |  1994-04-30  |  6.6 KB  |  165 lines

  1. In article <2png1s$5pi@vern.bga.com>, fmouse@bga.com (Lindsay Haisley) says:
  2. >
  3. >My wife and I plan to run KA9Q on a gateway machine which is SLIPed to my
  4. >company, a local Internet service provider.  We will have two machines (in
  5. >addition to the gateway) on our local net, each with it's own IP address and
  6. >name. We're running Windows for Workgroups w. NetBEUI for communications via
  7. >our local LAN (EtherCard PLUS Elite16) and would like to use Trumpet Winsock
  8. >(which we've been using for direct SLIP) as the interface for TCP/IP client
  9. >software to the local net.  I have dis_pkt9.dos which I can install on our
  10. >machines.  I likewise have the W4W Resource Ket which does indeed seem to be
  11. >a more complete manual than the 'official' W4W manual, although it's rather
  12. >brief on the subject of TCP/IP and not very helpful.  I understand that
  13. >there is a great deal of configuration involved in a setup such as this.
  14. >
  15. >Any advice or suggestions, especially from anyone who has gone this route
  16. >already, will be gratefully accepted.
  17.  
  18. A friend of mine tried a similar configuration. His autoexec.nos of the
  19. pc connected to the phone (the routing machine) looks like this:
  20.  
  21. # =============                                     NOSview [301]
  22. # /autoexec.nos
  23. # =============
  24. hostname *****
  25. #This is the IP of you gateway machine. The IP is only
  26. #used beteween your local gateway and the slipserver of
  27. #your provider. I suppose, that an entry in the routing table
  28. #must exist ...
  29. ip address <x.x.x.x>
  30. domain suffix ****
  31.  
  32. # slipdriver (cslipper)
  33. attach packet 0x60 sl0 16 300
  34. # ethernet packet driver
  35. attach packet 0x63 en0 5 1500
  36.  
  37. # Memory
  38. watch on
  39. watchdog on
  40. memory thresh 8192
  41. memory efficient yes
  42. memory ibufsize 1600
  43. memory nibufs 30
  44.  
  45. # TCP/IP
  46. ip rtimer 60
  47. ip ttl 50
  48. tcp mss 1450
  49. tcp window 3000
  50.  
  51. # the following IP is the address of the slipSERVER
  52. # (your service provider)
  53. route add default sl0 p.p.p.p
  54. # On your local ethernet you use any ip, which 
  55. # your provider reserverd for you. If you have more then
  56. # one machine at home, you need more ip's
  57. route add l.l.l.l en0
  58. -----------------------------------------
  59. # this is a sample client-configuration (this machine is
  60. # connected via ethernet to your local slip gate)
  61. # hostname ******
  62. # ip same as above ...
  63. # ip address l.l.l.l 
  64. # attach packet 0x63 en0 5 1500
  65. # routing to your own gate ...
  66. # route add default en0 x.x.x.x
  67. # if you have a domainname server ...
  68. # domain add d.d.d.d
  69. # tcp mss 1438
  70. # tcp window 3000
  71.  
  72. BTW: we tested it with a class c-net. All addresses are placed in the
  73.      same segment.
  74.  
  75. Bye,  Karl-Heinz
  76.  
  77.  
  78. From news@bigblue.oit.unc.edu Thu Apr 28 13:22:53 1994
  79. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  80.           id AA20417; Fri, 29 Apr 1994 19:02:18 -0400
  81. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  82.           id AA16247; Fri, 29 Apr 1994 18:59:04 -0400
  83. Received: from GATEWAY by bigblue with netnews
  84.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  85. To: winsock@sunsite.unc.edu
  86. Date: Thu, 28 Apr 1994 13:22:53 GMT
  87. From: sherwood@zeta.is.tcu.edu (Frank L. Sherwood)
  88. Message-Id: <sherwood.47.2DBFB8AD@zeta.is.tcu.edu>
  89. Organization: Texas Christian University
  90. Sender: ses
  91. References: <chris.3.0010A06F@clubside.digex.net>
  92. Subject: Re: New PD Telnet and FTP for Winsock
  93.  
  94. In article <chris.3.0010A06F@clubside.digex.net> chris@clubside.digex.net (Chris Rowley) writes:
  95.  
  96. >Hello all, I am new to the Internet, and even newer to programming Internet 
  97. >clients, but after a few weeks fumbling around with the horrible Telnet 
  98. >clients I've seen for winsock, I've gone ahead and written my own using Visual 
  99. >Basic and Distinct's excellent winsock VBX. So far I have implemented the 
  100. >following:
  101. >     * Automatic Sizing of telnet font based on window size
  102. >     * Variable size split screen Terminal/Chat window with split bar
  103. >     * Terminal scrollback >20K
  104. >     * Telnet address book supporting unlimited addresses with
  105. >          - name
  106. >          - host name/address
  107. >          - port
  108. >          - comments
  109. >     * custom font, size and attributes for the chat window
  110. >     * saves window position and size for all windows
  111. >     * all information in private .INI file for easy editing in or
  112. >       out of the software
  113. >Features I'll finish tomorrow:
  114. >     * preferences for controlling in-bound and out-bound CR/LF
  115. >     * re-send lines from chat window (command history)
  116. >     * custom foreground/background colors for terminal and chat windows
  117. >     * custom font for terminal window
  118. >     * terminal font size on/off
  119. >     * dockable buttonbar for storing macros (typing macros that is)
  120. >Features I won't have ready before the first release (planned for Friday):
  121. >     * VT-100 or any other emulation other than tty
  122.  
  123. >Why I'm typing this here is so if other people who call MUDs or use Telnet for 
  124. >a lot of work, and who have some clue as to what features would be nice, could 
  125. >please tell me what they want in a Telnet client. I'm open to any and all 
  126. >suggestions.
  127.  
  128. The most glaring omission I've seen in Telnet clients relative to MUD use is 
  129. support for XON/XOFF output controll.  That's been the reason I continue to do 
  130. all my MUD calling through my mainframe VAX account - the VAX's telnet 
  131. implements the Ctrl-S (XOFF) to pause output and Ctrl-Q (XON) to restart it.  
  132. Ever try to actually READ all the stuff flying by your screen sometimes in a 
  133. really busy room? 
  134.  
  135. Also, the VAX telnet seems to automatically XOFF the output as soon as I start 
  136. typing, and then XON it again after I hit CR.  Even worse than trying to read 
  137. in a busy room, try to =type= when every 4 or 5 characters you type gets 
  138. interrupted by a stream of everybody else's chatter!  I've never yet seen a PC 
  139. telnet client that didn't have this problem.
  140.  
  141. -----------------------------------------------------------
  142. Frank L. Sherwood, Computer Support Coordinator
  143. Neeley School of Business
  144. Texas Christian University
  145. sherwood@zeta.is.tcu.edu  or  sherwood@gamma.is.tcu.edu
  146. -----------------------------------------------------------
  147. From news@bigblue.oit.unc.edu Fri Apr 29 10:21:43 1994
  148. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  149.           id AA24355; Fri, 29 Apr 1994 19:32:08 -0400
  150. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  151.           id AA22160; Fri, 29 Apr 1994 19:28:43 -0400
  152. Received: from GATEWAY by bigblue with netnews
  153.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  154. To: winsock@sunsite.unc.edu
  155. Date: Fri, 29 Apr 1994 10:21:43 GMT
  156. From: minerj@cs.colostate.edu (Jacob Miner)
  157. Message-Id: <minerj.17.00055CD3@cs.colostate.edu>
  158. Organization: Colorado State University
  159. Sender: ses
  160. Subject: IRC
  161.  
  162.     It would be cool of someone wrote an IRC client for winsock.  Also are 
  163. there any public domain x-window packages?
  164.  
  165.